home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / UTILITIE / CPU_MEMO / 0577.ZIP / REMOTE.BAT < prev    next >
DOS Batch File  |  1987-04-03  |  826b  |  37 lines

  1. cls
  2. echo off
  3. rem
  4. rem                       EQUAL PARTNERS
  5. rem
  6. rem                        Version 1.11
  7. rem         Copyright (c) DOWNLINK SYSTEMS INC. 1986,1987
  8. rem This is an example of installing EQUAL on the "remote"
  9. rem also the .bat checks the error/return code from the
  10. rem application program, and takes action accordingly
  11. rem
  12. rem The %1 symbolic parameter may be COM1 or COM2
  13. rem
  14.  
  15. EQUAL.COM /%1
  16.  
  17. if errorlevel 3 goto already
  18. if errorlevel 2 goto missing
  19. if errorlevel 1 goto badcomm
  20. echo Equal successfully installed resident
  21. goto end
  22.  
  23. :already
  24. echo Equal communications program already installed resident
  25. goto end
  26.  
  27. :missing
  28. echo Config.sys file missing 50-50.SYS statement
  29. goto end
  30.  
  31. :badcomm
  32. echo Communications port %1 was not found
  33. goto end
  34.  
  35. :end
  36. echo ** END OF EQUAL INSTALL **
  37.